home *** CD-ROM | disk | FTP | other *** search
/ PC Open 43 / pcopen43.iso / Internet / SimpleFind / setup.exe / {app} / SimpleFind.exe / 0 / RCDATA / TFORMHTML / TFORMHTML.txt
Encoding:
Text File  |  2000-09-15  |  2.2 KB  |  117 lines

  1. object FormHTML: TFormHTML
  2.   Left = 200
  3.   Top = 106
  4.   BorderStyle = bsDialog
  5.   Caption = 'Save Search Results as HTML file'
  6.   ClientHeight = 220
  7.   ClientWidth = 341
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = True
  15.   Position = poScreenCenter
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 16
  21.     Top = 56
  22.     Width = 127
  23.     Height = 13
  24.     Caption = '&Number of URLs per page:'
  25.     FocusControl = ComboNumber
  26.   end
  27.   object BitBtn1: TBitBtn
  28.     Left = 56
  29.     Top = 184
  30.     Width = 75
  31.     Height = 25
  32.     TabOrder = 0
  33.     Kind = bkOK
  34.   end
  35.   object BitBtn2: TBitBtn
  36.     Left = 184
  37.     Top = 184
  38.     Width = 75
  39.     Height = 25
  40.     TabOrder = 1
  41.     Kind = bkCancel
  42.   end
  43.   object EditFileName: TEdit
  44.     Left = 16
  45.     Top = 16
  46.     Width = 233
  47.     Height = 21
  48.     TabOrder = 2
  49.   end
  50.   object Button1: TButton
  51.     Left = 254
  52.     Top = 14
  53.     Width = 75
  54.     Height = 25
  55.     Caption = '&Browse...'
  56.     TabOrder = 3
  57.     OnClick = Button1Click
  58.   end
  59.   object ComboNumber: TComboBox
  60.     Left = 160
  61.     Top = 48
  62.     Width = 89
  63.     Height = 21
  64.     Style = csDropDownList
  65.     ItemHeight = 13
  66.     Items.Strings = (
  67.       'All'
  68.       '10'
  69.       '20'
  70.       '30'
  71.       '40'
  72.       '50')
  73.     TabOrder = 4
  74.   end
  75.   object GroupBox1: TGroupBox
  76.     Left = 16
  77.     Top = 80
  78.     Width = 305
  79.     Height = 89
  80.     TabOrder = 5
  81.     object RadioDoNotOpen: TRadioButton
  82.       Left = 16
  83.       Top = 16
  84.       Width = 273
  85.       Height = 17
  86.       Caption = '&Do not open HTML file'
  87.       TabOrder = 0
  88.     end
  89.     object RadioOpen: TRadioButton
  90.       Left = 16
  91.       Top = 40
  92.       Width = 273
  93.       Height = 17
  94.       Caption = '&Open HTML file'
  95.       Checked = True
  96.       TabOrder = 1
  97.       TabStop = True
  98.     end
  99.     object RadioOpenWindow: TRadioButton
  100.       Left = 16
  101.       Top = 64
  102.       Width = 281
  103.       Height = 17
  104.       Caption = 'Open HTML file in a new &window'
  105.       TabOrder = 2
  106.     end
  107.   end
  108.   object SaveDialog: TSaveDialog
  109.     DefaultExt = 'HTML'
  110.     Filter = 'HTML files (*.html)|*.html'
  111.     Options = [ofOverwritePrompt]
  112.     Title = 'Save As HTML'
  113.     Left = 304
  114.     Top = 40
  115.   end
  116. end
  117.